Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

for-each

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

for-each

A better forEach

  • 0.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15M
decreased by-53.77%
Maintainers
2
Weekly downloads
 
Created

What is for-each?

The for-each npm package is a utility that allows you to iterate over elements in an array or keys in an object, applying a function to each element or key-value pair. It is a simple and straightforward package that provides a way to perform operations on collections without the need for traditional for loops.

What are for-each's main functionalities?

Array Iteration

Iterate over an array, executing a function for each element. The function receives the value, index, and the array itself.

var forEach = require('for-each');

var array = [1, 2, 3];
forEach(array, function (value, index, array) {
  console.log(value);
});

Object Iteration

Iterate over the keys of an object, executing a function for each key-value pair. The function receives the value, key, and the object itself.

var forEach = require('for-each');

var object = {a: 1, b: 2, c: 3};
forEach(object, function (value, key, object) {
  console.log(key + ': ' + value);
});

Other packages similar to for-each

FAQs

Package last updated on 02 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc